home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / adlibn / mainfrm.cpp < prev    next >
C/C++ Source or Header  |  1998-12-23  |  3KB  |  119 lines

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "DBTest.h"
  6.  
  7. #include "MainFrm.h"
  8.  
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMainFrame
  17.  
  18. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  19.  
  20. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  21.     //{{AFX_MSG_MAP(CMainFrame)
  22.         // NOTE - the ClassWizard will add and remove mapping macros here.
  23.         //    DO NOT EDIT what you see in these blocks of generated code !
  24.     ON_WM_CREATE()
  25.     //}}AFX_MSG_MAP
  26. END_MESSAGE_MAP()
  27.  
  28. static UINT indicators[] =
  29. {
  30.     ID_SEPARATOR,           // status line indicator
  31.     ID_INDICATOR_CAPS,
  32.     ID_INDICATOR_NUM,
  33.     ID_INDICATOR_SCRL,
  34. };
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CMainFrame construction/destruction
  38.  
  39. CMainFrame::CMainFrame()
  40. {
  41.     // TODO: add member initialization code here
  42.     
  43. }
  44.  
  45. CMainFrame::~CMainFrame()
  46. {
  47. }
  48.  
  49. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  50. {
  51.     if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  52.         return -1;
  53.     
  54.     if (!m_wndToolBar.CreateEx(this) ||
  55.         !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  56.     {
  57.         TRACE0("Failed to create toolbar\n");
  58.         return -1;      // fail to create
  59.     }
  60.     if (!m_wndDlgBar.Create(this, IDR_MAINFRAME, 
  61.         CBRS_ALIGN_TOP, AFX_IDW_DIALOGBAR))
  62.     {
  63.         TRACE0("Failed to create dialogbar\n");
  64.         return -1;        // fail to create
  65.     }
  66.  
  67.     if (!m_wndReBar.Create(this) ||
  68.         !m_wndReBar.AddBar(&m_wndToolBar) ||
  69.         !m_wndReBar.AddBar(&m_wndDlgBar))
  70.     {
  71.         TRACE0("Failed to create rebar\n");
  72.         return -1;      // fail to create
  73.     }
  74.  
  75.     if (!m_wndStatusBar.Create(this) ||
  76.         !m_wndStatusBar.SetIndicators(indicators,
  77.           sizeof(indicators)/sizeof(UINT)))
  78.     {
  79.         TRACE0("Failed to create status bar\n");
  80.         return -1;      // fail to create
  81.     }
  82.  
  83.     // TODO: Remove this if you don't want tool tips
  84.     m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  85.         CBRS_TOOLTIPS | CBRS_FLYBY);
  86.  
  87.     return 0;
  88. }
  89.  
  90. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  91. {
  92.     if( !CMDIFrameWnd::PreCreateWindow(cs) )
  93.         return FALSE;
  94.     // TODO: Modify the Window class or styles here by modifying
  95.     //  the CREATESTRUCT cs
  96.  
  97.     return TRUE;
  98. }
  99.  
  100. /////////////////////////////////////////////////////////////////////////////
  101. // CMainFrame diagnostics
  102.  
  103. #ifdef _DEBUG
  104. void CMainFrame::AssertValid() const
  105. {
  106.     CMDIFrameWnd::AssertValid();
  107. }
  108.  
  109. void CMainFrame::Dump(CDumpContext& dc) const
  110. {
  111.     CMDIFrameWnd::Dump(dc);
  112. }
  113.  
  114. #endif //_DEBUG
  115.  
  116. /////////////////////////////////////////////////////////////////////////////
  117. // CMainFrame message handlers
  118.  
  119.